home *** CD-ROM | disk | FTP | other *** search
- /*
- USAGE
- =====
- MENUNAME = new menuSys(left, top, cellWidth, cellHeight, menuXOffset, menuYOffset, borderWidth, borderColour, bgColourOff, bgColourOn, subMenuPic (RIGHT), subMenuPic (DOWN), subMenuPic (RIGHT-MOUSEOVER), subMenuPic (DOWN-MOUSEOVER), direction, rememberHilight);
-
- MENUNAME.addCell('CELL TEXT', 'ACTION', 'DESCRIPTION');
- OR
- MENUNAME.addCell('CELL TEXT', 'ACTION', 'DESCRIPTION', 'SUBMENUNAME', SHOW_ARROW); to create a submenu
- SHOW_ARROW = true / false - default = true
- */
-
- myMenu1 = new menuSys(5, 30, 150, 18, 0, 0, 1, 'black', 'menuOff', 'menuOn', '#FFFFFF', '#CCE0FA', 'submenu.gif', 'submenud.gif', 'submenuonwhite.gif', 'submenudon.gif', 1, true);
- myMenu2 = new menuSys(60, 30, 150, 18, 0, 0, 1, 'black', 'menuOff', 'menuOn', '#FFFFFF', '#CCE0FA', 'submenu.gif', 'submenud.gif', 'submenuonwhite.gif', 'submenudon.gif', 1, true);
- myMenu3 = new menuSys(130, 30, 180, 18, 0, 0, 1, 'black', 'menuOff', 'menuOn', '#FFFFFF', '#CCE0FA', 'submenu.gif', 'submenud.gif', 'submenuonwhite.gif', 'submenudon.gif', 1, true);
- myMenu4 = new menuSys(5, 30, 180, 18, 0, 0, 1, 'black', 'menuOff', 'menuOn', '#FFFFFF', '#CCE0FA', 'submenu.gif', 'submenud.gif', 'submenuonwhite.gif', 'submenudon.gif', 1, true);
-
- myMenu1.addCell(' <font color=#1F3A7D>Check for Updates</font>','showUpdatesPage();');
- myMenu1.addCell(' <font color=#1F3A7D>Shutdown','shutdown();');
-
- myMenu2.addCell(' <font color=#1F3A7D>Settings','showSettingsPage();');
- myMenu2.addCell(' <font color=#1F3A7D>Schedule Scan','showSchedulePage();');
-
-
- myMenu3.addCell(' <font color=#1F3A7D>Summary','showSummaryPage();');
- myMenu3.addCell(' <font color=#1F3A7D>Spyware Scan','showStartScanPage();','','spywarescan',false);
- myMenu3.addCell(' <font color=#1F3A7D>Real-Time Protection','showRealTimePage();','','realtime',false);
-
- myMenu3.spywarescan.addCell(' <font color=#1F3A7D>Last Scan Results','showScanResultsPage();');
- myMenu3.spywarescan.addCell(' <font color=#1F3A7D>Scan History','showScanHistoryPage();');
- myMenu3.spywarescan.addCell(' <font color=#1F3A7D>Quarantined Spyware','showQuarantinePage();');
- myMenu3.spywarescan.addCell(' <font color=#1F3A7D>Ignored Spyware','showIgnoreListPage();');
-
-
- myMenu3.realtime.addCell(' <font color=#1F3A7D>Internet Guards','showRTInternetMonitorsPage();');
- myMenu3.realtime.addCell(' <font color=#1F3A7D>System Guards','showRTSystemMonitorsPage();');
- myMenu3.realtime.addCell(' <font color=#1F3A7D>Application Guards','showRTApplicationMinitorsPage();');
- myMenu3.realtime.addCell(' <font color=#1F3A7D>Blocked Events','showRTViewBlockedEventsPage();');
- myMenu3.realtime.addCell(' <font color=#1F3A7D>Allowed Events','showRTViewAllEventsPage();');
-
- myMenu4.addCell(' <font color=#1F3A7D>About SpyEraser','showAboutPage();');
- //myMenu4.addCell(' Online Help');
- myMenu4.addCell(' <font color=#1F3A7D>Suspect Spyware report','showSuspectDialog();');
-
-